home *** CD-ROM | disk | FTP | other *** search
/ APDL Eductation Resources / APDL Eductation Resources.iso / programs / network / notify / !Notify / !Help < prev    next >
Encoding:
Text File  |  1994-03-30  |  5.6 KB  |  136 lines

  1. !Notify version 1.0
  2. written by Adam Curtin 1993 (adam@ifeng.demon.co.uk)
  3.  
  4. Notify allows immediate communication between Econet stations.
  5.  
  6. Versions of the NetFiler pre-RISC OS 3 had a "Notify" menu item which
  7. allowed you to send a short message to another station. The message appeared
  8. in an error box on the remote station, which blocked the whole machine until
  9. OK was clicked or Escape or return pressed. If you were in the middle of
  10. typing when a message arrived, the incoming notice box could eat a return
  11. and disappear before you'd had a chance to read it. It was all a bit naff.
  12.  
  13. In RISC OS 3, the "Notify" item was quietly removed from the NetFiler menu
  14. to be replaced with ... nothing.
  15.  
  16. There are, however, hooks in the wimp to enable third parties to write
  17. their own much more friendly inter-station communications utilities, and
  18. that's what !Notify is.
  19.  
  20. It sports a number of wacky features:
  21.  
  22.   * Takes up no space on the desktop or icon bar, yet it's just a hot-key
  23.     press away when you need it.
  24.  
  25.   * Pops its window open and to the front when a message arrives,
  26.     ensuring you don't miss anything.
  27.  
  28.   * Optionally beeps announcing an incoming message in case eg the screen is
  29.     blanked.
  30.  
  31.   * Accommodates *much* longer messages than the NetFiler notify, with
  32.     each message presented on a single line in a horizontally-scrolling
  33.     window.
  34.  
  35.   * Allows selection of the message destination from a menu of user names
  36.     rather than net/station numbers. The menu is regenerated each time it is
  37.     displayed to ensure it remains up-to-date. Your own login name is
  38.     greyed out.
  39.  
  40.   * Optionally sets the destination station to match the sender of the last
  41.     message to allow easy reply and prevent embarrassment!
  42.  
  43.   * Maintains a log of both incoming and outgoing messages, annotated with
  44.     the source/destination station number (for incoming/outgoing messages)
  45.     and distinguished by colour, making it easy to follow conversations and
  46.     refer back to who said what. The latest message is highlighted in yet
  47.     another colour.
  48.  
  49.   * scrolls the window to the bottom when a new message arrives, in case
  50.     you're scrolled up the log somewhere.
  51.  
  52.   * Allows earlier incoming or outgoing messages to be recalled and edited
  53.     for resubmission.
  54.  
  55.   * Log can be cleared in case it contains incriminating statements
  56.  
  57.   * Any other station's Notify log can be remotely cleared in case they
  58.     contain incriminating statements!
  59.  
  60. +------------------------+
  61. | How to use !Notify ... |
  62. +------------------------+
  63.  
  64. But first: You need Econet of course, and you also need to be logged on. The
  65. program runs even without these, but it's not terribly useful!
  66. If you're really desperate to play with it, you can send messages to station
  67. 0.0 - the outgoing message appears in the log but is not sent out.
  68.  
  69. After starting the program, the only indication that it's running is an
  70. entry in the task manager's "Application tasks" list, but the program is
  71. running, and you are able to receive messages from other stations.
  72.  
  73. To send a message, first open the window using Ctrl-Tab. This *almost*
  74. always works, but a couple of applications consume Ctrl-Tab themselves. If
  75. one of these applications owns the caret, give the caret to another window.
  76.  
  77. With the window open, click in the writable field right of the "Station:"
  78. label and type the destination network and station number, eg "0.42" If you
  79. omit the network number it defaults to 0. Alternatively, click menu over the
  80. message composition field and choose a user by name from the list.
  81.  
  82. Then get the caret in the "Message:" box and type. To send the message,
  83. simply press return. The message box clears ready for the next message,
  84. and the outgoing message is added to the bottom of the log.
  85.  
  86. To recall an earlier message, simply find it in the log and click on it.
  87. This copies it down to the message field exactly as if you'd typed it in.
  88. Alternatively, with the caret in the message field you can use the up and
  89. down cursor keys to cycle through the entries.
  90.  
  91. +----------------------+
  92. | The !Notify menu ... |
  93. +----------------------+
  94.  
  95. Clear ... clears the log. Alternatively, double-click in the log window.
  96. Beep  ... Enables/disables the incoming message beep.
  97. Reply ... Enable/disables the automatic setting of the Station: field when a
  98.           message arrives
  99. Quit  ... Guess.
  100.  
  101. Beep and Reply are both initially set. They can be turned off using
  102. command-line options, either in the !Notify.!RunImage file, or when starting
  103. !Notify eg from a !Boot file.
  104.  
  105. The options are "-b" to turn the beep off and "-r" to turn reply address
  106. generation off, eg:
  107.  
  108.   (in the !Run file)
  109.  
  110.   Run <Notify$Dir>.!RunImage -r %*0
  111.  
  112.   (in a !Boot file)
  113.  
  114.   Filer_Run SCSI::Eidos.$.Adam.Apps.!Notify -t
  115.  
  116. +-----------------------+
  117. | Clearing a remote log |
  118. +-----------------------+
  119.  
  120. Send a message consisting of the single character "`" will clear the log in
  121. the receiving station. There's no way of disabling this on the receiving
  122. end as I feel you should be able to insist that your comments are deleted.
  123. This makes it open to abuse but the novelty of clearing someone else's log
  124. soon wears off and does no real harm.
  125.  
  126. On the other hand, an early version of !Notify allowed any command to be
  127. sent and remotely executed. This had some amusing uses, eg tidying the
  128. pinboard or setting the backdrop to an annoying sprite; some mischievous
  129. uses eg turning the ARM3 cache off or starting a dozen copies of !Paint; and
  130. some destructive uses ... you could easily wipe an entire hard disk,
  131. format a floppy or run a machine-crashing application.
  132.  
  133. After successfully amusing and irritating some colleagues :-) the thought of
  134. releasing a program with such potential for evil was just too much. This
  135. version has all such code removed.
  136.